*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Poppins,sans-serif;
}

body{
    background:#f4f7fb;
    color:#222;
}

.header{
    background:#4f46e5;
    padding:20px 8%;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.logo{
    color:#fff;
    text-decoration:none;
    font-size:28px;
    font-weight:bold;
}

nav a{
    color:#fff;
    text-decoration:none;
    margin-left:20px;
}

.container{
    max-width:700px;
    margin:50px auto;
    background:#fff;
    padding:40px;
    text-align:center;
    border-radius:15px;
    box-shadow:0 10px 25px rgba(0,0,0,.1);
}

h1{
    margin-bottom:15px;
}

p{
    color:#666;
    margin-bottom:25px;
}

input[type="file"]{
    width:100%;
    padding:14px;
    border:2px dashed #4f46e5;
    border-radius:10px;
    background:#fafafa;
    cursor:pointer;
    margin:20px 0;
}

#output{
    margin-top:30px;
    display:flex;
    flex-direction:column;
    gap:25px;
}

.card{
    background:#fff;
    border:1px solid #ddd;
    border-radius:12px;
    padding:15px;
    box-shadow:0 5px 15px rgba(0,0,0,.08);
}

.card img{
    width:100%;
    border-radius:10px;
    margin-bottom:15px;
}

.card a{
    display:inline-block;
    background:#4f46e5;
    color:#fff;
    text-decoration:none;
    padding:14px 30px;
    border-radius:8px;
    transition:.3s;
}

.card a:hover{
    background:#3730a3;
}

@media(max-width:768px){

    .header{
        flex-direction:column;
        gap:15px;
    }

    .container{
        margin:20px;
        padding:25px;
    }

}